home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 14439 / 14439.xpi / chrome / tabber.jar / content / opentabsrelative.js < prev    next >
Text File  |  2009-11-11  |  4KB  |  106 lines

  1. /*
  2.  
  3. Open tabs to the right of current tab
  4. Reference: Open Tabs Relative by John Mellor
  5. Latest revisions by Frank Yan - 2009.10.05
  6.  
  7. <license>
  8.  
  9. Copyright (c) 2006 John Mellor
  10.  
  11. Permission is hereby granted, free of charge, to any person obtaining a copy
  12. of this software and associated documentation files (the "Software"), to deal
  13. in the Software without restriction, including without limitation the rights
  14. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. copies of the Software, and to permit persons to whom the Software is
  16. furnished to do so, subject to the following conditions:
  17.  
  18. The above copyright notice and this permission notice shall be included in
  19. all copies or substantial portions of the Software.
  20.  
  21. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. THE SOFTWARE.
  28.  
  29. </license>
  30.  
  31. */
  32.  
  33. window.addEventListener("load", function(event) {
  34.  
  35. // Globals
  36. window.tabsopenrelative_nextTabShift = 1;
  37. window.tabsopenrelative_nextIsRelative = null;
  38.  
  39. // Reset shift upon switching tabs
  40. getBrowser().mTabContainer.addEventListener("select", function() { tabsopenrelative_nextTabShift = 1; }, false);
  41.  
  42. // Decrement shift if tab closed in shift region (recent children of current tab)
  43. gBrowser.mTabContainer.addEventListener("DOMNodeRemoved", function(event) {
  44.     try {
  45.         var index = event.target._tPos;
  46.         if (index && gBrowser.mTabContainer.selectedIndex < index && gBrowser.mTabContainer.selectedIndex + tabsopenrelative_nextTabShift > index)
  47.             tabsopenrelative_nextTabShift--;
  48.     }
  49.     catch (ex) {}
  50. }, false);
  51.  
  52. // Mark certain tab sources as always related to current tab
  53. var relatedTabSources = [
  54.     'nsContextMenu.prototype.openLinkInTab',
  55.     'nsContextMenu.prototype.openFrameInTab',
  56.     'nsContextMenu.prototype.viewBGImage',
  57.     'nsContextMenu.prototype.addDictionaries',
  58.     'nsContextMenu.prototype.viewMedia'
  59. ];
  60. relatedTabSources.forEach(function (fname) {
  61.     if (fname.indexOf('Frame') == -1)
  62.         eval(fname + "=" + eval(fname + ".toString()").replace(
  63.             '{', // First '{'
  64.             '{ tabsopenrelative_nextIsRelative = true;'
  65.         ).replace(
  66.             /\}$/, // Last '}'
  67.             'tabsopenrelative_nextIsRelative = null; }'
  68.         ));
  69.     else
  70.         eval(fname + "=" + eval(fname + ".toString()").replace('{', '{ tabsopenrelative_nextIsRelative = true;'));
  71. });
  72.  
  73. // Mark Javascript popups are related to current tab, but links from external applications as unrelated
  74. eval("nsBrowserAccess.prototype.openURI = " + nsBrowserAccess.prototype.openURI.toString().replace(
  75.     'var newTab',
  76.     'tabsopenrelative_nextIsRelative = !isExternal; \
  77.     $&'
  78. ));
  79.  
  80. // Make final decision as to whether new tab is related to current tab or not,
  81. // using call stack if necessary, then move it if appropriate
  82. eval("gBrowser.addTab = " + gBrowser.addTab.toString().replace(
  83.     'if (t.previousSibling.selected)',
  84.  
  85.     'if (tabsopenrelative_nextIsRelative === null) { \
  86.         /* Always open relative unless addTab was called from a few known functions, \
  87.             * which move the tab themselves */ \
  88.         const lvl1NonRelativeSources = ["sss_undoCloseTab", "sss_restoreWindow"]; \
  89.         if (arguments.callee.caller \
  90.             && lvl1NonRelativeSources.indexOf(arguments.callee.caller.name) != -1) \
  91.             tabsopenrelative_nextIsRelative = false; \
  92.         else \
  93.             tabsopenrelative_nextIsRelative = true; \
  94.     } \
  95.     /* check preference */ \
  96.     if (!getBoolPref("tabberwocky.opentabsrelative")) \
  97.         tabsopenrelative_nextIsRelative = false; \
  98.     if (tabsopenrelative_nextIsRelative) { \
  99.         this.moveTabTo(t, this.mCurrentTab._tPos + (getBoolPref("tabberwocky.opentabsrelative.reverse") ? 1 : tabsopenrelative_nextTabShift)); \
  100.         tabsopenrelative_nextTabShift++; \
  101.     } \
  102.     tabsopenrelative_nextIsRelative = null; \
  103.     $&'
  104. ));
  105.  
  106. }, false);